哈哈哈 哈哈哈
4年前
js 时间处理
时间戳转formdate格式13||16位javascriptfunctiontimeStampToFormdate(timestamp){if(timestamp){return'}vardatetimestamp.toString(
Wesley13 Wesley13
3年前
PLA感知学习算法
1include<vector2include<iomanip3include<string4include<stdio.h5include<string.h6include<fstream7include<ios
Wesley13 Wesley13
3年前
java 中链表的实现
//数据类 class DATA2{String key;String name;int age;}//定义链表类class CLType{DATA2 nodedatanew DATA2();CLType nextNodenull;//下
Wesley13 Wesley13
3年前
java字符串比较和jdkequals源码分析
 package com.cnse.demo;/  比较两个字符串相等 /public class StringTest { public static void main(String args) {  int checkLength  0;  String str
Stella981 Stella981
3年前
Python 字符串常用方法 string
字符串操作  描述string.capitalize()将字符串的第一个字母大写string.count()    获得字符串中某个字符串的数目string.find()获得字符串中某一子字符串的起始位置,无则返回1string.isalnum()检测字符串是仅包含09AZazstring.isalpha()
Stella981 Stella981
3年前
Creating Node.js Command Line Utilities to Improve Your Workflow
 转自:https://developer.telerik.com/featured/creatingnodejscommandlineutilitiesimproveworkflow/类似的oclifOnceuponatime,thecommandlineseemedscaryandintimidatingtom
可莉 可莉
3年前
200多个js技巧代码(2)
51.向文件中写内容<%@ page import"java.io." %<% String str  "print me"; //always give the path from root. This way it almost always works. String nameOfTex
Stella981 Stella981
3年前
Golang数组去重
方法一://这种发放适用于string,int,float等切片,会对切片中的元素进行排序funcSliceRemoveDuplicates(slicestring)string{sort.Strings(slice)i:0varjint
Wesley13 Wesley13
3年前
JAVA 进制转换的几个方法
进制转化在JAVA中已经封装好了.无论是常规的10转2,8,16,还是相对应的2,8,16进制转化为10进制的方法,当然也包括10n进制,n进制转10进制的常规方法.都被封装在Integer对象中.10进制转化其他进制对应的方法,参数:n(原10进制数据),r(进制),返回值10进制转2进制Integer.toBinarySt
Stella981 Stella981
3年前
200多个js技巧代码(2)
51.向文件中写内容<%@ page import"java.io." %<% String str  "print me"; //always give the path from root. This way it almost always works. String nameOfTex